home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / Online / Epic4 / share / epic / help / 7_docs / Signals < prev    next >
Encoding:
Text File  |  2001-03-21  |  879 b   |  21 lines

  1. Process Signals Relevant to the Operation of EPIC                         
  2.  
  3. EPIC's behavior can be controlled (to an extent) from the Unix command line
  4. via signals.  The following signals have notable affects on the client:
  5.  
  6.    SIGSEGV   cause the client to dump core, if compiled with EPIC_DEBUG
  7.    SIGTERM   cause the client to immediately, but gracefully, exit
  8.    SIGKILL   cause the client to die immediately, no cleanup
  9.    SIGUSR1   cause the client to close all DCC connections and any EXECed
  10.              processes that are still active
  11.  
  12. Typically, these signals are delivered with kill(1).  The client's process
  13. id (PID) must be known to send it a signal.  The PID may be obtained with the
  14. ps(1) command, or other utilities that display running processes.  The basic
  15. form would be:
  16.  
  17.    % kill -USR1 <PID>
  18.  
  19. Refer to your system's manual pages for more information.
  20.  
  21.